home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / dos / maxfnd31 / whatsnew.mf < prev   
Encoding:
Text File  |  1994-09-01  |  2.7 KB  |  58 lines

  1.  
  2. What's new with MaxFind 3.0:
  3.    - New span options - paragraph.  Plain paragraph separator (a blank
  4.      line) or a specific string (eg, 'bbs:'). This is great for saved 
  5.      Email and other computer produced data.
  6.      Or a "hanging outdent" paragraph where the first line starts in 
  7.      column 1 with the balance of the "paragraph" indented. Good for 
  8.      BBS file lists
  9.    - Faster - with data in a ramdisk or cache, 900k bytes per 
  10.      second on a 386-40.
  11.    - Color on the output to hilight the found strings.
  12.    - Files to be searched can be specified with a filelist.
  13.    - "MAXFIND" environment variable allows you to change the
  14.      default options including the color.
  15.    - Less unneeded output.
  16.    - The form \nn may be used to enter characters that are not enterable 
  17.      thru the keyboard. nn specifies the decimal equivalent of the character.
  18.    - Default is now an unlimited input line length, with an option 
  19.      to limit it to 80 bytes.   -L
  20.    - NOT boolean option.        !
  21.    - Line start option, ^ indicates first position.
  22.    - Piped input accepted, ie:  < 
  23.    - For use in batch files, returns 1 if any hits, else 0;
  24.  
  25. Example batch files:
  26.  
  27.    1.  mf -ps"^ bbs:" %1 %2 %3 %4 %5 %6  c:\Email.sav\*.*
  28.        Searching saved E-mail using paragraph scope where the first 
  29.        line of the messages start with " bbs:".
  30.  
  31.    2.  mf -po  %1 %2 %3 %4 %5 %6 %7 %8  c:\filelist.bbs\*.*
  32.        Paragraph scope hanging outdent (first line only in col. 1)
  33.        Typical of BBS file lists.
  34.  
  35.    3.  mf volume %1 %2 %3 %4  c:\info\floppy.cat | mf -psvolume %1 %2 %3 %4 
  36.        Diskette cataloging, where "dir a: >>floppy.cat" produces the
  37.        catalog using diskettes with labels (internal matches external).
  38.        The search indicates the diskette volume containing the file.
  39.  
  40.    4.  mf -ps"^ BBS:"  !forsale-   msgs.old  >msgs.new
  41.        For saved E-mail, purge messages from forsale conferences.
  42.  
  43.    5.  mf -ps\31 %1 %2 %3 %4 %5 %6 %7 c:\bible\*.*
  44.        Search bible verses
  45.               
  46. Paragraph option:
  47.   -p       Specify paragraph option, where paragraphs are seperated by a
  48.            blank line.
  49.   -po[n]   Another paragraph option, this time the paragraph is defined
  50.            as "outdented" or "hanging indent". If a number is not 
  51.            specified, the paragraph starts with text in column 1 and
  52.            the rest of the lines start with at least one space. If 
  53.            the optional n is used, it specifies the column in in which 
  54.            the first line should be nonblank.
  55.   -psTEXT  The string (ps) option indicates that the first line of 
  56.            the "paragraph" contains TEXT. The TEXT should be in quotes
  57.            if it contains any blanks. 
  58.